前言

这篇文章我们开始讲laravel框架中的门面Facade,什么是门面呢?官方文档:

  Facades(读音:/fəˈsäd/ )为应用程序的服务容器中可用的类提供了一个「静态」接口。Laravel 自带了很多 facades ,几乎可以用来访问到 Laravel 中所有的服务。Laravel facades 实际上是服务容器中那些底层类的「静态代理」,相比于传统的静态方法, facades 在提供了简洁且丰富的语法同时,还带来了更好的可测试性和扩展性。

  什么意思呢?首先,我们要知道laravel框架的核心就是个Ioc容器即服务容器,功能类似于一个工厂模式,是个高级版的工厂。laravel的其他功能例如路由、缓存、日志、数据库其实都是类似于插件或者零件一样,叫做服务。Ioc容器主要的作用就是生产各种零件,就是提供各个服务。在laravel中,如果我们想要用某个服务,该怎么办呢?最简单的办法就是调用服务容器的make函数,或者利用依赖注入,或者就是今天要讲的门面Facade。门面相对于其他方法来说,最大的特点就是简洁,例如我们经常使用的Router,如果利用服务容器的make:

  1. ```php
  2. App::make('router')->get('/', function () {
  3. return view('welcome');
  4. });
  5. ```

如果利用门面:

  1. ```php
  2. Route::get('/', function () {
  3. return view('welcome');
  4. });
  5. ```

可以看出代码更加简洁。其实,下面我们就会介绍门面最后调用的函数也是服务容器的make函数。

Facade的原理

  我们以Route为例,来讲解一下门面Facade的原理与实现。我们先来看Route的门面类:

  1. ```php
  2. class Route extends Facade
  3. {
  4. protected static function getFacadeAccessor()
  5. {
  6. return 'router';
  7. }
  8. }
  9. ```

  很简单吧?其实每个门面类也就是重定义一下getFacadeAccessor函数就行了,这个函数返回服务的唯一名称:router。需要注意的是要确保这个名称可以用服务容器的make函数创建成功(App::make(‘router’)),原因我们马上就会讲到。
  那么当我们写出Route::get()这样的语句时,到底发生了什么呢?奥秘就在基类Facade中。

  1. ```php
  2. public static function __callStatic($method, $args)
  3. {
  4. $instance = static::getFacadeRoot();
  5. if (! $instance) {
  6. throw new RuntimeException('A facade root has not been set.');
  7. }
  8. return $instance->$method(...$args);
  9. }
  10. ```

  当运行Route::get()时,发现门面Route没有静态get()函数,PHP就会调用这个魔术函数__callStatic。我们看到这个魔术函数做了两件事:获得对象实例,利用对象调用get()函数。首先先看看如何获得对象实例的:

  1. ```php
  2. public static function getFacadeRoot()
  3. {
  4. return static::resolveFacadeInstance(static::getFacadeAccessor());
  5. }
  6. protected static function getFacadeAccessor()
  7. {
  8. throw new RuntimeException('Facade does not implement getFacadeAccessor method.');
  9. }
  10. protected static function resolveFacadeInstance($name)
  11. {
  12. if (is_object($name)) {
  13. return $name;
  14. }
  15. if (isset(static::$resolvedInstance[$name])) {
  16. return static::$resolvedInstance[$name];
  17. }
  18. return static::$resolvedInstance[$name] = static::$app[$name];
  19. }
  20. ```

  我们看到基类getFacadeRoot()调用了getFacadeAccessor(),也就是我们的服务重载的函数,如果调用了基类的getFacadeAccessor,就会抛出异常。在我们的例子里getFacadeAccessor()返回了“router”,接下来getFacadeRoot()又调用了resolveFacadeInstance()。在这个函数里重点就是

  1. ```php
  2. return static::$resolvedInstance[$name] = static::$app[$name];
  3. ```

我们看到,在这里利用了\$app也就是服务容器创建了“router”,创建成功后放入$resolvedInstance作为缓存,以便以后快速加载。
  好了,Facade的原理到这里就讲完了,但是到这里我们有个疑惑,为什么代码中写Route就可以调用Illuminate\Support\Facades\Route呢?这个就是别名的用途了,很多门面都有自己的别名,这样我们就不必在代码里面写use Illuminate\Support\Facades\Route,而是可以直接用Route了。

别名Aliases

  为什么我们可以在laravel中全局用Route,而不需要使用use Illuminate\Support\Facades\Route?其实奥秘在于一个PHP函数:class_alias,它可以为任何类创建别名。laravel在启动的时候为各个门面类调用了class_alias函数,因此不必直接用类名,直接用别名即可。在config文件夹的app文件里面存放着门面与类名的映射:

  1. ```php
  2. 'aliases' => [
  3. 'App' => Illuminate\Support\Facades\App::class,
  4. 'Artisan' => Illuminate\Support\Facades\Artisan::class,
  5. 'Auth' => Illuminate\Support\Facades\Auth::class,
  6. ...
  7. ]
  8. ```

  下面我们来看看laravel是如何为门面类创建别名的。

启动别名Aliases服务

  说到laravel的启动,我们离不开index.php:

  1. ```php
  2. require __DIR__.'/../bootstrap/autoload.php';
  3. $app = require_once __DIR__.'/../bootstrap/app.php';
  4. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
  5. $response = $kernel->handle(
  6. $request = Illuminate\Http\Request::capture()
  7. );
  8. ...
  9. ```

  第一句就是我们前面博客说的composer的自动加载,接下来第二句获取laravel核心的Ioc容器,第三句“制造”出Http请求的内核,第四句是我们这里的关键,这句牵扯很大,laravel里面所有功能服务的注册加载,乃至Http请求的构造与传递都是这一句的功劳。

  1. ```php
  2. $request = Illuminate\Http\Request::capture()
  3. ```

  这句是laravel通过全局$_SERVER数组构造一个Http请求的语句,接下来会调用Http的内核函数handle:

  1. ```php
  2. public function handle($request)
  3. {
  4. try {
  5. $request->enableHttpMethodParameterOverride();
  6. $response = $this->sendRequestThroughRouter($request);
  7. } catch (Exception $e) {
  8. $this->reportException($e);
  9. $response = $this->renderException($request, $e);
  10. } catch (Throwable $e) {
  11. $this->reportException($e = new FatalThrowableError($e));
  12. $response = $this->renderException($request, $e);
  13. }
  14. event(new Events\RequestHandled($request, $response));
  15. return $response;
  16. }
  17. ```

  在handle函数方法中enableHttpMethodParameterOverride函数是允许在表单中使用delete、put等类型的请求。我们接着看sendRequestThroughRouter:

  1. ```php
  2. protected function sendRequestThroughRouter($request)
  3. {
  4. $this->app->instance('request', $request);
  5. Facade::clearResolvedInstance('request');
  6. $this->bootstrap();
  7. return (new Pipeline($this->app))
  8. ->send($request)
  9. ->through($this->app->shouldSkipMiddleware() ? [] :
  10. $this->middleware)
  11. ->then($this->dispatchToRouter());
  12. }
  13. ```

  前两句是在laravel的Ioc容器设置request请求的对象实例,Facade中清楚request的缓存实例。bootstrap:

  1. ```php
  2. public function bootstrap()
  3. {
  4. if (! $this->app->hasBeenBootstrapped()) {
  5. $this->app->bootstrapWith($this->bootstrappers());
  6. }
  7. }
  8. protected $bootstrappers = [
  9. \Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables::class,
  10. \Illuminate\Foundation\Bootstrap\LoadConfiguration::class,
  11. \Illuminate\Foundation\Bootstrap\HandleExceptions::class,
  12. \Illuminate\Foundation\Bootstrap\RegisterFacades::class,
  13. \Illuminate\Foundation\Bootstrap\RegisterProviders::class,
  14. \Illuminate\Foundation\Bootstrap\BootProviders::class,
  15. ];
  16. ```

  $bootstrappers是Http内核里专门用于启动的组件,bootstrap函数中调用Ioc容器的bootstrapWith函数来创建这些组件并利用组件进行启动服务。app->bootstrapWith:

  1. ```php
  2. public function bootstrapWith(array $bootstrappers)
  3. {
  4. $this->hasBeenBootstrapped = true;
  5. foreach ($bootstrappers as $bootstrapper) {
  6. $this['events']->fire('bootstrapping: '.$bootstrapper, [$this]);
  7. $this->make($bootstrapper)->bootstrap($this);
  8. $this['events']->fire('bootstrapped: '.$bootstrapper, [$this]);
  9. }
  10. }
  11. ```

  可以看到bootstrapWith函数也就是利用Ioc容器创建各个启动服务的实例后,回调启动自己的函数bootstrap,在这里我们只看我们Facade的启动组件

  1. ```php
  2. \Illuminate\Foundation\Bootstrap\RegisterFacades::class
  3. ```

RegisterFacades的bootstrap函数:

  1. ```php
  2. class RegisterFacades
  3. {
  4. public function bootstrap(Application $app)
  5. {
  6. Facade::clearResolvedInstances();
  7. Facade::setFacadeApplication($app);
  8. AliasLoader::getInstance($app->make('config')->get('app.aliases', []))
  9. ->register();
  10. }
  11. }
  12. ```

  可以看出来,bootstrap做了一下几件事:

  1. 清除了Facade中的缓存
  2. 设置Facade的Ioc容器
  3. 获得我们前面讲的config文件夹里面app文件aliases别名映射数组
  4. 使用aliases实例化初始化AliasLoader
  5. 调用AliasLoader->register()
  1. ```php
  2. public function register()
  3. {
  4. if (! $this->registered) {
  5. $this->prependToLoaderStack();
  6. $this->registered = true;
  7. }
  8. }
  9. protected function prependToLoaderStack()
  10. {
  11. spl_autoload_register([$this, 'load'], true, true);
  12. }
  13. ```

  我们可以看出,别名服务的启动关键就是这个spl_autoload_register,这个函数我们应该很熟悉了,在自动加载中这个函数用于解析命名空间,在这里用于解析别名的真正类名。

别名Aliases服务

  我们首先来看看被注册到spl_autoload_register的函数,load:

  1. ```php
  2. public function load($alias)
  3. {
  4. if (static::$facadeNamespace && strpos($alias,
  5. static::$facadeNamespace) === 0) {
  6. $this->loadFacade($alias);
  7. return true;
  8. }
  9. if (isset($this->aliases[$alias])) {
  10. return class_alias($this->aliases[$alias], $alias);
  11. }
  12. }
  13. ```

  这个函数的下面很好理解,就是class_alias利用别名映射数组将别名映射到真正的门面类中去,但是上面这个是什么呢?实际上,这个是laravel5.4版本新出的功能叫做实时门面服务。

实时门面服务

  其实门面功能已经很简单了,我们只需要定义一个类继承Facade即可,但是laravel5.4打算更近一步——自动生成门面子类,这就是实时门面。
  实时门面怎么用?看下面的例子:

  1. ```php
  2. namespace App\Services;
  3. class PaymentGateway
  4. {
  5. protected $tax;
  6. public function __construct(TaxCalculator $tax)
  7. {
  8. $this->tax = $tax;
  9. }
  10. }
  11. ```

这是一个自定义的类,如果我们想要为这个类定义一个门面,在laravel5.4我们可以这么做:

  1. ```php
  2. use Facades\ {
  3. App\Services\PaymentGateway
  4. };
  5. Route::get('/pay/{amount}', function ($amount) {
  6. PaymentGateway::pay($amount);
  7. });
  8. ```

  当然如果你愿意,你还可以在alias数组为门面添加一个别名映射”PaymentGateway” => “use Facades\App\Services\PaymentGateway”,这样就不用写这么长的名字了。
  那么这么做的原理是什么呢?我们接着看源码:

  1. ```php
  2. protected static $facadeNamespace = 'Facades\\';
  3. if (static::$facadeNamespace && strpos($alias, static::$facadeNamespace) === 0) {
  4. $this->loadFacade($alias);
  5. return true;
  6. }
  7. ```

  如果命名空间是以Facades\开头的,那么就会调用实时门面的功能,调用loadFacade函数:

  1. ```php
  2. protected function loadFacade($alias)
  3. {
  4. tap($this->ensureFacadeExists($alias), function ($path) {
  5. require $path;
  6. });
  7. }
  8. ```

  tap是laravel的全局帮助函数,ensureFacadeExists函数负责自动生成门面类,loadFacade负责加载门面类:

  1. ```php
  2. protected function ensureFacadeExists($alias)
  3. {
  4. if (file_exists($path = storage_path('framework/cache/facade-'.sha1($alias).'.php'))) {
  5. return $path;
  6. }
  7. file_put_contents($path, $this->formatFacadeStub(
  8. $alias, file_get_contents(__DIR__.'/stubs/facade.stub')
  9. ));
  10. return $path;
  11. }
  12. ```

  可以看出来,laravel框架生成的门面类会放到stroge/framework/cache/文件夹下,名字以facade开头,以命名空间的哈希结尾。如果存在这个文件就会返回,否则就要利用file_put_contents生成这个文件,formatFacadeStub:

  1. ```php
  2. protected function formatFacadeStub($alias, $stub)
  3. {
  4. $replacements = [
  5. str_replace('/', '\\', dirname(str_replace('\\', '/', $alias))),
  6. class_basename($alias),
  7. substr($alias, strlen(static::$facadeNamespace)),
  8. ];
  9. return str_replace(
  10. ['DummyNamespace', 'DummyClass', 'DummyTarget'], $replacements, $stub
  11. );
  12. }
  13. ```

简单的说,对于Facades\App\Services\PaymentGateway,$replacements第一项是门面命名空间,将Facades\App\Services\PaymentGateway转为Facades/App/Services/PaymentGateway,取前面Facades/App/Services/,再转为命名空间Facades\App\Services\;第二项是门面类名,PaymentGateway;第三项是门面类的服务对象,App\Services\PaymentGateway,用这些来替换门面的模板文件:

  1. ```php
  2. <?php
  3. namespace DummyNamespace;
  4. use Illuminate\Support\Facades\Facade;
  5. /**
  6. * @see \DummyTarget
  7. */
  8. class DummyClass extends Facade
  9. {
  10. /**
  11. * Get the registered name of the component.
  12. *
  13. * @return string
  14. */
  15. protected static function getFacadeAccessor()
  16. {
  17. return 'DummyTarget';
  18. }
  19. }
  20. ```

替换后的文件是:

  1. ```php
  2. <?php
  3. namespace Facades\App\Services\;
  4. use Illuminate\Support\Facades\Facade;
  5. /**
  6. * @see \DummyTarget
  7. */
  8. class PaymentGateway extends Facade
  9. {
  10. /**
  11. * Get the registered name of the component.
  12. *
  13. * @return string
  14. */
  15. protected static function getFacadeAccessor()
  16. {
  17. return 'App\Services\PaymentGateway';
  18. }
  19. }
  20. ```

就是这么简单!!!

结语

  门面的原理就是这些,相对来说门面服务的原理比较简单,和自动加载相互配合使得代码更加简洁,希望大家可以更好的使用这些门面!